Update: simplify legacy storage and marketplace cache schemas#14
Merged
SI-RUI-ZHANG merged 3 commits intomainfrom Apr 15, 2026
Merged
Update: simplify legacy storage and marketplace cache schemas#14SI-RUI-ZHANG merged 3 commits intomainfrom
SI-RUI-ZHANG merged 3 commits intomainfrom
Conversation
SI-RUI-ZHANG
added a commit
that referenced
this pull request
Apr 19, 2026
* Simplify legacy storage and marketplace cache schemas * Tighten README user-facing configuration docs * Fix storage path test portability
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
原问题
store/shared_store.py,store/harness_support.py, andapplication/marketplace/cache.py, which left shared-store migration rules and marketplace cache rules inconsistent.githubFolderUrl, snapshotrepoUrl) and old cache namespaces even though the runtime no longer needed those payload shapes.本次修复
skill_manager/storage_paths.pyas the single app-owned path policy module, moved shared-store resolution and harness settings path ownership there, and switched marketplace cache resolution to canonical app data only.githubFolderUrl, internalrepo_url), bumped detail and repo-metadata cache namespaces to v2, and kept compatibility only for shared-store fallback plus Codex legacy discovery.改动文件
README.md
frontend/src/tests/App.test.tsx
frontend/src/features/marketplace/components/MarketplaceCard.test.tsx
frontend/src/features/marketplace/components/MarketplaceDetailView.test.tsx
frontend/src/features/marketplace/screens/MarketplacePage.loading.test.tsx
frontend/src/features/marketplace/screens/MarketplacePage.test.tsx
frontend/src/features/marketplace/test-fixtures.ts
frontend/src/features/skills/screens/ManagedSkillsPage.tsx
skill_manager/application/container.py
skill_manager/application/marketplace/cache.py
skill_manager/application/marketplace/catalog.py
skill_manager/application/marketplace/queries.py
skill_manager/application/marketplace/repo_snapshots.py
skill_manager/application/marketplace/resolver.py
skill_manager/application/read_model_service.py
skill_manager/harness/resolution.py
skill_manager/sources/github.py
skill_manager/store/init.py
skill_manager/store/harness_support.py
skill_manager/store/shared_store.py
skill_manager/storage_paths.py
tests/support/marketplace_fixture.py
tests/unit/test_github_repo_metadata.py
tests/unit/test_marketplace_service.py
tests/unit/test_store.py
tests/unit/test_storage_paths.py
Validation
/Users/siruizhang/Desktop/ModeIOSkill/project_skills/python-test-env/scripts/python-test-env.sh all --repo /Users/siruizhang/Desktop/ModeIOSkill/.worktrees/skillmgr--new--legacy-cleanupnpm testnpm run typechecknpm run build./.venv/bin/python scripts/build_release.py./.venv/bin/python scripts/validate_release_artifact.py --artifact .artifacts/release/skill-manager-v0.1.0-darwin-arm64.tar.gz --version 0.1.0bash scripts/validate_npm_wrapper.sh .artifacts/release/skill-manager-v0.1.0-darwin-arm64.tar.gzReviewer: @SI-RUI-ZHANG